home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 September (Japanese) / CICA Shareware for Windows CD-ROM (Walnut Creek) (September 1995) (Japanese) (Disc 2).iso / disc2 / patches / symantec / rtlinc.exe / WINDOWS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-30  |  314 b   |  20 lines

  1. /* copyright 1993  - Symantec Corporation */
  2. /* wrapper for the two different windows.h */
  3.  
  4. #ifdef __NT__
  5.  
  6. #ifndef _WINDOWS_
  7. #pragma pack(__DEFALIGN)
  8. #define _MSC_VER 800
  9. #define _X86_ 1
  10. #include <win32\windows.h>
  11. #undef _MSC_VER
  12. #pragma pack()
  13. #endif
  14.  
  15. #else
  16.  
  17. #include <win16\windows.h>
  18.  
  19. #endif
  20.